home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1998 January / PC Answers Issue 49 Cover CD January 1998.iso / Apps / Director / DATA.Z / ScriptAuthor-Navigate.dir / Scripts_6_Navigate to the Menu on the main movie.ls < prev    next >
Encoding:
Text File  |  1997-05-10  |  276 b   |  16 lines

  1. global gScriptAuthoringWindow
  2.  
  3. on mouseUp
  4.   if gScriptAuthoringWindow = the stage then
  5.     tell the stage
  6.       PlaySound("ButtonClick")
  7.       GoMenu()
  8.     end tell
  9.   else
  10.     tell gScriptAuthoringWindow
  11.       PlaySound("ButtonClick")
  12.       GoMenu()
  13.     end tell
  14.   end if
  15. end
  16.